HTMLify
index.html
Views: 393 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Bubble Shooter Game</title> <!-- Linking CSS & JS --> <script type='text/javascript' src='script.js'></script> <link rel="stylesheet" href="style.css"> </head> <body> <!-- main div --> <div> <canvas style="margin-left: 30%;" id="viewport" width="628" height="628"></canvas></div> </body> </html> |